home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d2
/
stack60.arc
/
SKDOC.EXE
/
FLUSH.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1990-03-25
|
403 b
|
21 lines
title FLUSH.ASM
;Copyright (C) 1990 by B. Simon and R. M. Wilson, all rights reserved.
cseg segment
assume cs:cseg
begin: mov al,0AEH
out 64H,al
xor cx,cx
here: loop here
mov ah,1
int 16h
jz nomore
xor ah,ah
int 16h
jmp short begin
nomore: ret
cseg ends
end begin